home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
dev
/
gcc
/
ixemul_src.lha
/
ixemul-41.0
/
gnulib-soft-float
/
addsf3.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
303b
|
19 lines
#include "common.h"
#ifdef IEEE_SINGBAS
#include <inline/mathieeesingbas.h>
#else
#include <inline/mathffp.h>
#include <inline/mathtrans.h>
#endif
SFVALUE
__addsf3 (a, b)
FLOAT a,b;
{
#ifdef IEEE_SINGBAS
return IEEESPAdd (a, b);
#else
return SPTieee( SPAdd( SPFieee(a), SPFieee(b)));
#endif
}